home *** CD-ROM | disk | FTP | other *** search
/ World of Fantasy / World of Fantasy (Art&Play)(1995).iso / redkey / restore.bat < prev    next >
DOS Batch File  |  1992-07-11  |  655b  |  25 lines

  1. @echo off
  2. echo             Restore of Dezerian Adventure
  3. echo Usage: RESTORE d  where d is number (single digit) of save set.
  4. if "%1"=="" goto noarg
  5. if exist song1.dez goto cont1
  6. echo Error: Must be run on hard disk in directory where Dezeria is located.
  7. goto end
  8. :cont1
  9. if exist mz.sv%1 goto cont2
  10. echo Error: Save Set %1 does not exist.
  11. goto end
  12. :cont2
  13. copy save.sv%1 save.dat
  14. copy mz.sv%1 mz.dat
  15. copy objchain.sv%1 objchain.dat
  16. copy sites.sv%1 sites.dat
  17. copy quad.sv%1 quad.dat
  18. copy mazes.sv%1 mazes.dat
  19. echo Save Set %1 Restored
  20. goto end
  21. :noarg
  22. echo Error: Must identify the save set to be restored with a single digit.
  23. :end
  24.  
  25.